home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Visual Cafe 3
/
Visual Cafe 3.ISO
/
Vcafe
/
Main.bin
/
TitlePositionPropertyEditor.java
< prev
next >
Wrap
Text File
|
1998-04-21
|
1KB
|
31 lines
package com.symantec.itools.swing.borders;
import com.symantec.itools.beans.*;
public final class TitlePositionPropertyEditor
extends TaggedIntPropertyEditor
{
private static TaggedInt[] m_Tags = null;
// When the class loads, load the tags
static
{
m_Tags = new TaggedInt[]
{
new TaggedInt("ABOVE_TOP", com.sun.java.swing.border.TitledBorder.ABOVE_TOP, "com.sun.java.swing.border.TitledBorder.ABOVE_TOP"),
new TaggedInt("TOP", com.sun.java.swing.border.TitledBorder.TOP, "com.sun.java.swing.border.TitledBorder.TOP"),
new TaggedInt("BELOW_TOP", com.sun.java.swing.border.TitledBorder.BELOW_TOP, "com.sun.java.swing.border.TitledBorder.BELOW_TOP"),
new TaggedInt("ABOVE_BOTTOM", com.sun.java.swing.border.TitledBorder.ABOVE_BOTTOM, "com.sun.java.swing.border.TitledBorder.ABOVE_BOTTOM"),
new TaggedInt("BOTTOM", com.sun.java.swing.border.TitledBorder.BOTTOM, "com.sun.java.swing.border.TitledBorder.BOTTOM"),
new TaggedInt("BELOW_BOTTOM", com.sun.java.swing.border.TitledBorder.BELOW_BOTTOM, "com.sun.java.swing.border.TitledBorder.BELOW_BOTTOM"),
new TaggedInt("DEFAULT_POSITION", com.sun.java.swing.border.TitledBorder.DEFAULT_POSITION, "com.sun.java.swing.border.TitledBorder.DEFAULT_POSITION"),
};
}
public TitlePositionPropertyEditor()
{
super(m_Tags);
}
}